home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / MULTIARY.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  1KB  |  43 lines

  1.                              /* Chapter 7 - Program 6 - MULTIARY.C */
  2. #include "stdio.h"
  3.  
  4. void main()
  5. {
  6. int i, j;
  7. int big[8][8], large[25][12];
  8.  
  9.    for (i = 0 ; i < 8 ; i++)
  10.       for (j = 0 ; j < 8 ; j++)
  11.          big[i][j] = i * j;       /* This is a multiplication table */
  12.  
  13.    for (i = 0 ; i < 25 ; i++)
  14.       for (j = 0 ; j < 12 ; j++)
  15.          large[i][j] = i + j;          /* This is an addition table */
  16.  
  17.    big[2][6] = large[24][10] * 22;
  18.    big[2][2] = 5;
  19.    big[big[2][2]][big[2][2]] = 177;     /* this is big[5][5] = 177; */
  20.  
  21.    for (i = 0 ; i < 8 ; i++) {
  22.       for (j = 0 ; j < 8 ; j++)
  23.          printf("%5d ", big[i][j]);
  24.       printf("\n");               /* newline for each increase in i */
  25.    }
  26. }
  27.  
  28.  
  29.  
  30.  
  31. /* Result of execution
  32.  
  33.     0     0     0     0     0     0     0     0
  34.     0     1     2     3     4     5     6     7
  35.     0     2     5     6     8    10   748    14
  36.     0     3     6     9    12    15    18    21
  37.     0     4     8    12    16    20    24    28
  38.     0     5    10    15    20   177    30    35
  39.     0     6    12    18    24    30    36    42
  40.     0     7    14    21    28    35    42    49
  41.  
  42. */
  43.